This is a git visualizer for the bash terminal. By adding the additional code of bashrc_git to your local bashrc, you will see the current branch in the terminal, without typing in "git branch" every time.
Note that you have to merge the bashrc_git into your local bashrc by yourself. Your local bashrc is in your home directory (~/bashrc)
color_prompt=yes
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[00m\]\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\[\033[0;36m\]$(__git_ps1 " (%s)")\[\033[00m\] \$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
Now add this to your .bashrc file:
. .bashrc_git